home *** CD-ROM | disk | FTP | other *** search
/ Visual Cafe 3 / Visual Cafe 3.ISO / Vcafe / Main.bin / WizardListener.java < prev    next >
Text File  |  1998-09-08  |  765b  |  41 lines

  1. package com.symantec.itools.frameworks.wizard;
  2.  
  3.  
  4. import java.util.EventListener;
  5.  
  6.  
  7. /**
  8.  * @author Symantec Internet Tools Division
  9.  * @version 1.0
  10.  * @since VCafe 3.0
  11.  */
  12.  
  13. public interface WizardListener
  14.     extends EventListener
  15. {
  16.  
  17.     /**
  18.      * @param event TODO
  19.      * @since VCafe 3.0
  20.      */
  21.     public void wizardFinishRequested(WizardEvent event);
  22.  
  23.     /**
  24.      * @param event TODO
  25.      * @since VCafe 3.0
  26.      */
  27.     public void wizardFinishedSuccessfully(WizardEvent event);
  28.  
  29.     /**
  30.      * @param event TODO
  31.      * @since VCafe 3.0
  32.      */
  33.     public void wizardCanceled(WizardEvent event);
  34.  
  35.     /**
  36.      * @param event TODO
  37.      * @since VCafe 3.0
  38.      */
  39.     public void wizardTitleChanged(WizardEvent event);
  40. }
  41.